home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / LINUX / MINIX_FS.{1M < prev    next >
Text File  |  1999-09-17  |  175b  |  15 lines

  1. #ifndef _MINIX_FS_I
  2. #define _MINIX_FS_I
  3.  
  4. /*
  5.  * minix fs inode data in memory
  6.  */
  7. struct minix_inode_info {
  8.     union {
  9.         __u16 i1_data[16];
  10.         __u32 i2_data[16];
  11.     } u;
  12. };
  13.  
  14. #endif
  15.